diff options
| author | real-zephex <[email protected]> | 2024-03-31 17:32:48 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-31 17:32:48 +0530 |
| commit | d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3 (patch) | |
| tree | f91c136407e3a41d115750e9ae895727c5ddf9cc /src/app/manga/[title]/[id]/info.module.css | |
| parent | fix: looks like image proxy is must for viewing manga pages. we will have to... (diff) | |
| download | dramalama-d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3.tar.xz dramalama-d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3.zip | |
fixes: minor css modifications, added basic information about the last read manga chapter (don't expect much out of it)
Diffstat (limited to 'src/app/manga/[title]/[id]/info.module.css')
| -rw-r--r-- | src/app/manga/[title]/[id]/info.module.css | 36 |
1 files changed, 25 insertions, 11 deletions
diff --git a/src/app/manga/[title]/[id]/info.module.css b/src/app/manga/[title]/[id]/info.module.css index d9d3d06..a36658a 100644 --- a/src/app/manga/[title]/[id]/info.module.css +++ b/src/app/manga/[title]/[id]/info.module.css @@ -16,7 +16,7 @@ .TitleContainer p { font-family: "Quicksand"; font-size: 40px; - font-weight: 900; + font-weight: 1000; } .TitleContainer img { @@ -65,7 +65,7 @@ } .Character::-webkit-scrollbar-thumb { - background-color: #B799FF; + background-color: #31363F; border-radius: 5px; } @@ -84,11 +84,25 @@ } /* Chapters Buttons */ -.ChapterContainer { - width: 100%; + +.Chapters { + display: flex; + align-items: center; + justify-content: space-between; + max-width: 90%; margin: 20px auto; +} + +.ChapterTitle { + color: white; + font-family: "Kanit"; + font-size: 32px; +} + +.ChapterContainer { + width: 50%; text-align: center; - height: 400px; + height: 300px; overflow-y: auto; } @@ -97,8 +111,7 @@ } .ChapterContainer::-webkit-scrollbar-thumb { - /* background-color: #949494; */ - background-color: #B799FF; + background-color: #31363F; border-radius: 5px; } @@ -111,10 +124,10 @@ font-size: 16px; border: none; outline: none; - font-family: "Lato"; - background-color: #f8f6e3dc; + color: white; + background-color: #3d3d3d; cursor: pointer; - transition: transform 0.2s linear; + transition: background-color 0.2s linear; } .ChapterContainer button p { @@ -123,7 +136,8 @@ } .ChapterContainer button:hover { - background-color: #97E7E1; + background-color: #1f1f1f; + transition: background-color 0.2s linear } .ChapterContainer button:focus { |